home *** CD-ROM | disk | FTP | other *** search
/ Electro GIG / Electro GIG.iso / gig / hpconv < prev    next >
Text File  |  1995-09-12  |  1KB  |  22 lines

  1. #!/bin/csh
  2. #***********************************************************************\
  3. #                                                                       *
  4. # Copyright (C) 1995, ElectroGIG Nederland BV, The Netherlands          *
  5. #                                                                       *
  6. # ElectroGIG Nederland                                                  *
  7. # Amstel 222                                                            *
  8. # 1017   AJ Amsterdam                                                   *
  9. # tel:   020-5217300                                                    *
  10. # fax:   020-6226801                                                    *
  11. # email: cm@gig.nl                                                      *
  12. #                                                                       *
  13. #***********************************************************************/
  14.  
  15. if ( $3 == "." ) then
  16.   exit
  17. endif
  18. set newname=`basename $3 \;1 | tr "[A-Z]" "[a-z]"`
  19. set orgname=`basename $3`
  20. /bin/rm -f $2/$newname > /dev/null
  21. ln -s $1/$orgname $2/$newname
  22.